home *** CD-ROM | disk | FTP | other *** search
/ MaxiMac 2001 October / MaxiMac 119.iso / Macworld on CD n°119 / Mac OS X / Internet / Utilisation / Snak 4.6.5 Carbon / Enable ident For OS X / More Documentation / What They Do < prev   
Encoding:
Text File  |  2001-04-01  |  1.6 KB  |  55 lines  |  [ttro/ttxt]

  1. What They Do for Enable ident and Disable ident for Mac OS X GM
  2.  
  3. 31 March, 2001
  4.  
  5.   
  6. aka "more technical info on how and why"
  7.  
  8. You can safely ignore this if it doesn't make sense.
  9.  
  10.  
  11.  
  12. Background Info
  13. ---------------
  14.  
  15. inetd.conf can be read as "internet daemon configuration file".  A daemon is 
  16. essentially a server program that various other parts of the operating system talk 
  17. to when they need internet services.  If a particular service is not listed in 
  18. inetd.conf, inetd (the internet daemon) will not provide those services.
  19.  
  20. inetd.conf is set to be only modifiable by the root user to make it 'safer'.  
  21. This is why one must log out and then back in as root to run the scripts.
  22.  
  23. What the scripts do
  24. -------------------
  25.  
  26. The Enable ident script looks in the file /private/etc/inetd.conf for the line 
  27. supplied by Apple:
  28.  
  29. #ident  stream  tcp     wait    root    /usr/libexec/tcpd       identd -w -t120
  30.  
  31. If it is in inetd.conf, then it changes that line to:
  32.  
  33. auth    stream  tcp     wait    root    /usr/libexec/tcpd       identd -w -t120
  34.  
  35. i.e. it changes '#ident' to 'auth'
  36.  
  37. if that line has been otherwise modified the script will not work.
  38.  
  39. Likewise the Disable ident script only changes
  40.  
  41. auth    stream  tcp     wait    root    /usr/libexec/tcpd       identd -w -t120
  42.  
  43. to
  44.  
  45. #ident  stream  tcp     wait    root    /usr/libexec/tcpd       identd -w -t120
  46.  
  47.  
  48.  
  49. This is freeware.  Please redistribute the whole package intact. Use it if you 
  50. like it; don't blame me if you don't like it.  Spread it around.  Enjoy the 
  51. sunshine.  Call your mother.
  52.  
  53. Written by Mosquito.  mosquito@netmug.org
  54.  
  55. This is the first version.